home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1995 December / Computer Life December 1995.iso / astound / ast30day.3 / ASTOUND / MCITMPL / CDAUDIO.AMT next >
INI File  |  1995-03-15  |  1KB  |  98 lines

  1. [MCITemplates]
  2. PlayNormal=Play
  3. PlayTrack=Play A Track
  4. PlayTrans=Play During Transition
  5. PlayTrackTrans=Play A Track During Transition
  6. PlayEject=Play A Track And Eject CD
  7.  
  8. [Script PlayNormal Start]
  9.  
  10.     [Beginning]
  11.     open {DEVICE} alias {ALIAS}
  12.  
  13.     [Entry]
  14.     play {ALIAS}
  15.  
  16.     [Exit]
  17.     stop {ALIAS}
  18.  
  19.     [Ending]
  20.     close {ALIAS}
  21.  
  22. [Script End]
  23.  
  24. [Script PlayTrack Start]
  25.  
  26.     [Beginning]
  27.     open {DEVICE} alias {ALIAS}
  28.     set {ALIAS} time format tmsf
  29.     seek {ALIAS} to {TRACK}
  30.  
  31.     [Entry]
  32.     play {ALIAS}
  33.  
  34.     [Exit]
  35.     stop {ALIAS}
  36.  
  37.     [Ending]
  38.     close {ALIAS}
  39.  
  40. [Script End]
  41.  
  42. [Script PlayTrans Start]
  43.  
  44.     [Beginning]
  45.     open {DEVICE} alias {ALIAS}
  46.     play {ALIAS}
  47.  
  48.     [Entry]
  49.     pause {ALIAS}
  50.  
  51.     [Exit]
  52.     play {ALIAS}
  53.  
  54.     [Ending]
  55.     stop {ALIAS}
  56.     close {ALIAS}
  57.  
  58. [Script End]
  59.  
  60. [Script PlayTrackTrans Start]
  61.  
  62.     [Beginning]
  63.     open {DEVICE} alias {ALIAS}
  64.     set {ALIAS} time format tmsf
  65.     play {ALIAS} from {TRACK}
  66.  
  67.     [Entry]
  68.     pause {ALIAS}
  69.  
  70.     [Exit]
  71.     play {ALIAS}
  72.  
  73.     [Ending]
  74.     stop {ALIAS}
  75.     close {ALIAS}
  76.  
  77. [Script End]
  78.  
  79. [Script PlayEject Start]
  80.  
  81.     [Beginning]
  82.     open {DEVICE} alias {ALIAS}
  83.     set {ALIAS} time format tmsf
  84.     seek {ALIAS} to {TRACK}
  85.  
  86.     [Entry]
  87.     play {ALIAS}
  88.  
  89.     [Exit]
  90.     stop {ALIAS}
  91.  
  92.     [Ending]
  93.     set {ALIAS} door open
  94.     close {ALIAS}
  95.  
  96. [Script End]
  97.  
  98.